-
Notifications
You must be signed in to change notification settings - Fork 8
ci: temporarily disable spec file linting #1435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR temporarily disables linting for .spec files to address issues with ESLint configuration for test files. The changes simplify the ESLint configuration by removing Angular-specific linting rules and adding explicit ignores for spec files.
- Removes Angular ESLint plugins and related rules from the configuration
- Adds explicit ignores for
**/*.spec.tsfiles in multiple places - Simplifies the configuration to basic TypeScript linting
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| }, | ||
| { | ||
| ignores: ['projects/**/*'] | ||
| ignores: ['projects/**/*', '**/*.spec.ts'] |
Copilot
AI
Oct 14, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The spec file ignore pattern is duplicated in two places (line 8 and line 28). Consider consolidating these ignores to avoid redundancy and potential inconsistencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Temporarily disable
.specfiles from linting, until proper esling is configured: #1292